/* ===================================
   LOJA DE COINS - DayZ XM Server
   现代简约设计 - 蓝色调主题
   ================================= */

.loja-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.05)), url('../img/loja-content.jpg') left top/auto fixed no-repeat;
    padding: 100px 15% 60px;
    min-height: auto;
}

/* Header Section */
.loja-section .main-text {
    text-align: center;
    margin-bottom: 2rem;
}

.loja-section .main-text p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.loja-section .main-text h2 {
    font-size: var(--h2-font);
    margin-bottom: 1rem;
}

.loja-section .main-text h2 span {
    color: var(--text-color);
}

.subtitle {
    font-size: 1rem;
    color: var(--second-color);
    margin-top: 0.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Boxes */
.coins-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.info-box {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: var(--main-color);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.info-box i {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.info-box p {
    color: var(--second-color);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.info-box strong {
    color: var(--main-color);
    font-weight: 600;
}

/* Packages Grid */
.coins-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1400px) {
    .coins-packages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 920px) {
    .coins-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Package Card */
.package-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.8rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.3);
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
}

.package-card:hover {
    transform: translateY(-12px);
    border-color: var(--main-color);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

/* Featured Package */
.package-card.featured {
    border: 1px solid rgba(59, 130, 246, 0.5);
    transform: scale(1.03);
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.package-card.featured::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: none;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-4px); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.package-card.featured:hover {
    transform: scale(1.06) translateY(-12px);
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--main-color);
    color: var(--text-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-badge.popular {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.5);
}

.package-badge.premium {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.5);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 6px 30px rgba(245, 158, 11, 0.8);
    }
}

/* Package Icon */
.package-icon {
    font-size: 3.5rem;
    text-align: center;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.package-icon i {
    display: inline-block;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.package-card:hover .package-icon i {
    animation: bounce 0.6s ease-in-out;
}

/* Package Title */
.package-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

/* Package Price */
.package-price {
    text-align: center;
    margin: 1rem 0;
    padding: 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.price-old {
    font-size: 1rem;
    font-weight: 600;
    color: #888;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--main-color);
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    display: inline-block;
    position: relative;
}

.price-value::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

.price-discount {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Package Coins */
.package-coins {
    text-align: center;
    margin: 1rem 0;
}

.coins-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    display: block;
}

.coins-label {
    font-size: 0.85rem;
    color: var(--second-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Package Bonus */
.package-bonus {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 0;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.package-total {
    text-align: center;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.1));
    border-radius: 10px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* Package Features */
.package-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    min-height: auto;
}

.package-features li {
    color: var(--second-color);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.package-features li:hover {
    color: var(--text-color);
    padding-left: 8px;
    border-bottom-color: rgba(59, 130, 246, 0.3);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Buy Button */
.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
    color: var(--text-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.2);
}

.btn-buy:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--main-color));
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-buy i {
    font-size: 1.3rem;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0 3rem;
    text-align: center;
}

.faq-section h2 {
    font-size: var(--h2-font);
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    border-left: 4px solid var(--main-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.faq-item h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h4 i {
    color: var(--main-color);
    font-size: 1.5rem;
}

.faq-item p {
    color: var(--second-color);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.03));
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.cta-section p {
    font-size: 1rem;
    color: var(--second-color);
    margin-bottom: 1.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2.5rem;
    background: linear-gradient(135deg, var(--main-color), var(--accent-color));
    color: var(--text-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
}

.btn-cta:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.btn-cta i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .loja-section {
        padding: 140px 8% 70px;
    }
}

@media (max-width: 920px) {
    .loja-section {
        padding: 120px 5% 60px;
    }
    
    .coins-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-12px);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .package-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .loja-section {
        padding: 100px 3% 50px;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .coins-amount {
        font-size: 2.5rem;
    }
    
    .package-card h3 {
        font-size: 1.5rem;
    }
    
    .package-icon {
        font-size: 3rem;
    }
    
    .coins-packages {
        gap: 1.5rem;
    }
    
    .btn-buy, .btn-cta {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
}
