/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.verified-badge {
    background: #8b5cf6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.nav-center {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.search-container i {
    color: #8b5cf6;
    margin-right: 0.5rem;
}

.search-container input {
    background: none;
    border: none;
    color: #ffffff;
    flex: 1;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-container input:focus {
    outline: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn, .login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.cart-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.cart-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.cart-count {
    background: #8b5cf6;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
}

.login-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: #8b5cf6;
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

/* Categories Section */
.categories {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #16213e 100%);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before,
.category-card.active::before {
    opacity: 1;
}

.category-card:hover,
.category-card.active {
    border-color: #8b5cf6;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-card:hover .category-icon,
.category-card.active .category-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.category-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card:hover h3,
.category-card.active h3 {
    color: #8b5cf6;
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price::before {
    content: '💰';
    font-size: 1.2rem;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.buy-now-btn {
    flex: 1;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(10px);
}

.buy-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.buy-now-btn:hover::before {
    left: 100%;
}

.buy-now-btn::after {
    content: '🛒';
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.buy-now-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #166534 100%);
}

.buy-now-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(139, 92, 246, 0.5);
    transform: scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal .product-image {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.modal .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.delivery-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.product-variations {
    margin: 2rem 0;
}

.variation-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variation-option:hover,
.variation-option.selected {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
}

.variation-info h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.variation-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.variation-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.buy-button {
    flex: 1;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    color: white;
    border: none;
    padding: 1.3rem 2.8rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(15px);
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button::after {
    content: '⚡';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.buy-button:hover::after {
    opacity: 1;
    right: 15px;
}

.buy-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
}

.buy-button:active {
    transform: translateY(-2px) scale(0.99);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.buy-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.cart-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
    border: 2px solid rgba(139, 92, 246, 0.4);
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cart-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.5s;
}

.cart-button:hover::before {
    left: 100%;
}

.cart-button::after {
    content: '🛍️';
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cart-button:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(139, 92, 246, 0.8);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.cart-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Botão de verificação de pagamento */
.verify-button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
    backdrop-filter: blur(10px);
}

.verify-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.verify-button:hover::before {
    left: 100%;
}

.verify-button::after {
    content: '🔍';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.verify-button:hover::after {
    opacity: 1;
    right: 15px;
}

.verify-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #d97706 0%, #b45309 50%, #92400e 100%);
}

.verify-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Botão de submissão */
.submit-button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1.3rem 2.8rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(15px);
    width: 100%;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button::after {
    content: '✨';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.submit-button:hover::after {
    opacity: 1;
    right: 20px;
}

.submit-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-section a {
    color: #8b5cf6;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #7c3aed;
    transform: translateX(5px);
}

.security-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-center {
        max-width: 100%;
        margin: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .payment-info {
        grid-template-columns: 1fr;
    }
    
    .nav-right {
        flex-direction: column;
        width: 100%;
    }
    
    .cart-btn,
    .login-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #8b5cf6;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
} 

/* Product Media Gallery */
.product-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-gallery {
    margin-top: 1rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
}

.gallery-thumbnail:hover {
    border-color: #8b5cf6;
    transform: scale(1.05);
}

.gallery-thumbnail.active {
    border-color: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.product-video {
    margin-top: 1rem;
}

.product-video iframe {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Admin Gallery Preview */
.gallery-preview {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.gallery-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.form-group small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

/* Remove cart button styles */
.cart-btn, .cart-button {
    display: none !important;
} 

/* Animações e efeitos especiais para botões */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }
}

/* Estados de loading para botões */
.btn-loading {
    pointer-events: none;
    position: relative;
    color: transparent !important;
}

.btn-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Efeitos especiais para botões premium */
.buy-now-btn.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 50%, #ff8c00 100%);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
    animation: glowPulse 2s ease-in-out infinite;
}

.buy-now-btn.premium:hover {
    background: linear-gradient(135deg, #ffb700 0%, #ff8c00 50%, #ff6b00 100%);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

/* Botões com efeito de partículas */
.buy-button.sparkle::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem;
    animation: buttonPulse 1.5s ease-in-out infinite;
}

/* Botão de sucesso */
.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%) !important;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4) !important;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%) !important;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6) !important;
}

/* Botão de erro */
.btn-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%) !important;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4) !important;
}

.btn-error:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%) !important;
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6) !important;
}

/* Efeitos de hover avançados */
.buy-now-btn:hover,
.buy-button:hover,
.cart-button:hover,
.verify-button:hover,
.submit-button:hover {
    animation: none;
}

/* Responsividade para botões */
@media (max-width: 768px) {
    .buy-now-btn,
    .buy-button,
    .cart-button,
    .verify-button,
    .submit-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 15px;
    }
    
    .buy-now-btn::after,
    .buy-button::after,
    .cart-button::after,
    .verify-button::after,
    .submit-button::after {
        font-size: 1rem;
        right: 15px;
    }
}

/* Grupo de botões */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button-group .buy-now-btn,
.button-group .buy-button,
.button-group .cart-button {
    flex: 1;
    min-width: 200px;
}

/* Botões com ícones personalizados */
.btn-icon {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-icon i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Efeito de ondulação ao clicar */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-effect:active::after {
    width: 300px;
    height: 300px;
} 

/* Melhorias finais para botões profissionais */

/* Efeito de borda interna para todos os botões */
.buy-now-btn,
.buy-button,
.cart-button,
.verify-button,
.submit-button {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Efeito de profundidade ao hover */
.buy-now-btn:hover,
.buy-button:hover,
.cart-button:hover,
.verify-button:hover,
.submit-button:hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Texto com sombra sutil */
.buy-now-btn,
.buy-button,
.verify-button,
.submit-button {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Efeito de vidro fosco */
.cart-button {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Animação de entrada para botões */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.buy-now-btn,
.buy-button,
.cart-button,
.verify-button,
.submit-button {
    animation: fadeInUp 0.6s ease-out;
}

/* Efeito de partículas ao hover */
.buy-now-btn:hover::before,
.buy-button:hover::before,
.verify-button:hover::before,
.submit-button:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

/* Micro-interações */
.buy-now-btn:focus,
.buy-button:focus,
.cart-button:focus,
.verify-button:focus,
.submit-button:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(139, 92, 246, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Efeito de pressão */
.buy-now-btn:active,
.buy-button:active,
.cart-button:active,
.verify-button:active,
.submit-button:active {
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Gradientes aprimorados com mais paradas */
.buy-now-btn {
    background: linear-gradient(135deg, 
        #22c55e 0%, 
        #16a34a 25%, 
        #15803d 50%, 
        #166534 75%, 
        #14532d 100%);
}

.buy-button {
    background: linear-gradient(135deg, 
        #8b5cf6 0%, 
        #7c3aed 25%, 
        #6d28d9 50%, 
        #5b21b6 75%, 
        #4c1d95 100%);
}

.verify-button {
    background: linear-gradient(135deg, 
        #f59e0b 0%, 
        #d97706 25%, 
        #b45309 50%, 
        #92400e 75%, 
        #78350f 100%);
}

.submit-button {
    background: linear-gradient(135deg, 
        #3b82f6 0%, 
        #2563eb 25%, 
        #1d4ed8 50%, 
        #1e40af 75%, 
        #1e3a8a 100%);
}

/* Efeito de reflexo */
.buy-now-btn::after,
.buy-button::after,
.verify-button::after,
.submit-button::after {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Transições suaves para todos os pseudo-elementos */
.buy-now-btn::before,
.buy-now-btn::after,
.buy-button::before,
.buy-button::after,
.cart-button::before,
.cart-button::after,
.verify-button::before,
.verify-button::after,
.submit-button::before,
.submit-button::after {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estados especiais para mobile */
@media (max-width: 768px) {
    .buy-now-btn:hover,
    .buy-button:hover,
    .cart-button:hover,
    .verify-button:hover,
    .submit-button:hover {
        transform: none;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
} 

/* Product Features/Description */
.product-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.product-features h3 {
    color: #8b5cf6;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features h3::before {
    content: '📝';
    font-size: 1.1rem;
}

.features-list {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
}

.features-list p {
    margin-bottom: 0.8rem;
    text-align: justify;
}

.features-list ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.features-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.features-list li::marker {
    color: #8b5cf6;
}

.features-list strong {
    color: #ffffff;
    font-weight: 600;
}

.features-list em {
    color: #22c55e;
    font-style: normal;
    font-weight: 500;
}

.features-list code {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

/* Payment Methods */
.payment-methods {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.payment-methods h3 {
    color: #22c55e;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-methods h3::before {
    content: '💳';
    font-size: 1.1rem;
}

.payment-methods p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
}

.payment-icons i {
    font-size: 2rem;
    color: #22c55e;
}

/* Product Rating */
.product-rating {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.product-rating h3 {
    color: #f59e0b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-rating h3::before {
    content: '⭐';
    font-size: 1.1rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.rating-text {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Estilos para Modal de Pagamento PIX */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.payment-modal-content {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.payment-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    pointer-events: none;
}

.payment-modal-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.payment-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.payment-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.payment-modal-body {
    padding: 30px;
    text-align: center;
}

.qr-code-container {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-code-container img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
}

.pix-code-section {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.pix-code-section h3 {
    color: #8b5cf6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.pix-code-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px;
    color: white;
    font-family: monospace;
    font-size: 0.9rem;
    resize: none;
    margin-bottom: 15px;
}

.pix-code-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.copy-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.copy-button:active {
    transform: translateY(0);
}

.payment-instructions {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.payment-instructions p {
    margin: 8px 0;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.payment-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.verify-payment-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verify-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.cancel-payment-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cancel-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

.payment-loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.payment-loading .spinner {
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-top: 3px solid #8b5cf6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsividade para o modal */
@media (max-width: 768px) {
    .payment-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .payment-modal-body {
        padding: 20px;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .verify-payment-btn,
    .cancel-payment-btn {
        width: 100%;
        justify-content: center;
    }
} 

/* Modal de Confirmação de Sucesso */
.success-modal {
    display: none;
    position: fixed;
    z-index: 2001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.success-modal-content {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    animation: successModalSlideIn 0.5s ease-out;
}

@keyframes successModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    pointer-events: none;
}

.success-modal-header {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: successIconBounce 0.8s ease-out;
}

@keyframes successIconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.success-modal-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-modal-body {
    padding: 40px;
    text-align: center;
}

.success-message {
    margin-bottom: 30px;
}

.success-message p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin: 0;
}

.key-section {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
}

.key-section h3 {
    color: #22c55e;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.key-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.key-container input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 15px;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
}

.key-container input:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.copy-key-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.copy-key-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.copy-key-btn:active {
    transform: translateY(0);
}

.download-section {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
}

.download-section h3 {
    color: #3b82f6;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.download-section p {
    color: #e2e8f0;
    margin-bottom: 20px;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
    background: linear-gradient(135deg, #4752c4 0%, #3c4699 100%);
}

.discord-link i {
    font-size: 1.2rem;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.dashboard-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    max-width: 200px;
}

.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.close-success-btn {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    max-width: 200px;
}

.close-success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 114, 128, 0.4);
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
}

/* Responsividade para o modal de sucesso */
@media (max-width: 768px) {
    .success-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .success-modal-body {
        padding: 25px;
    }
    
    .success-modal-header {
        padding: 25px;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .success-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .key-container {
        flex-direction: column;
    }
    
    .key-container input {
        width: 100%;
    }
    
    .copy-key-btn {
        width: 100%;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .dashboard-btn,
    .close-success-btn {
        max-width: none;
        width: 100%;
    }
} 

/* Animações para toast de erro */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Estilo para toast de erro */
.error-toast {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
}

.error-toast .toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-toast .toast-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Estados de botões desabilitados */
.verify-payment-btn:disabled,
.cancel-payment-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Melhorias na exibição do loading */
.payment-loading {
    margin-top: 20px;
    padding: 20px;
    text-align: center;
}

.payment-loading .spinner {
    margin: 0 auto 15px;
}

.payment-loading p {
    color: #e2e8f0;
    font-weight: 500;
}

/* Efeito de fade para modais */
.success-modal.show {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.success-modal.show .success-modal-content {
    transform: translateY(0);
    opacity: 1;
}

/* Success Modal Dynamic Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal .success-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} 

/* Purchase Modal Styles */
.purchase-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.purchase-content h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.purchase-summary {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.product-summary h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-summary p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.product-summary .price {
    color: #8b5cf6;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

.form-group input:invalid {
    border-color: rgba(239, 68, 68, 0.5);
}

.form-group input:valid {
    border-color: rgba(34, 197, 94, 0.5);
} 

/* Purchase Modal Responsive */
@media (max-width: 768px) {
    .purchase-content {
        padding: 1.5rem;
    }
    
    .purchase-content h2 {
        font-size: 1.5rem;
    }
    
    .purchase-summary {
        padding: 1rem;
    }
    
    .product-summary h3 {
        font-size: 1.1rem;
    }
    
    .product-summary .price {
        font-size: 1.3rem;
    }
    
    .form-group input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
} 

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
} 

/* Toast Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Info Toast Styles */
.info-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    z-index: 3000;
    animation: slideInRight 0.3s ease-out;
    max-width: 400px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.info-toast .toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-toast .toast-content i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Error Toast Styles */
.error-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    z-index: 3000;
    animation: slideInRight 0.3s ease-out;
    max-width: 400px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.error-toast .toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-toast .toast-content i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Success Toast Styles */
.success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    z-index: 3000;
    animation: slideInRight 0.3s ease-out;
    max-width: 400px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.success-toast .toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-toast .toast-content i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Responsive adjustments for toasts */
@media (max-width: 768px) {
    .info-toast,
    .error-toast,
    .success-toast {
        right: 10px;
        left: 10px;
        max-width: none;
        font-size: 14px;
    }
}