/* --------------------------------------------------------------------------------
   DUCK SCRIPTS - STYLE BASE (CSS GERAL PARA TODAS AS PÁGINAS)
   Inclui estilos de Layout, Botões de Ação, Cards e Resgate.
-------------------------------------------------------------------------------- */

/* Base e Reset */
* { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto Condensed', sans-serif;
    background: linear-gradient(to bottom, #000, #030303);
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Base pad para Header Fixo */
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* TÍTULOS E SEÇÕES GERAIS */
.section { padding: 90px 20px; text-align: center; }
.black-section { background: #080808; }

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255,215,0,0.7);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* BOTÃO CTA PRINCIPAL (Dourado Skewed - Uso fora dos cards) */
.btn-cta {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    color: #000;
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 19px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    border: none;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
    letter-spacing: 1px;
}
.btn-cta:hover {
    background: linear-gradient(135deg, #fff04a 0%, #D4AF37 100%);
    transform: translateY(-3px) skewX(-5deg) scale(1.02);
    box-shadow: 0 5px 35px rgba(255, 240, 0, 0.8);
}
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-20deg);
    transition: all 0.7s;
}
.btn-cta:hover::before {
    left: 100%;
}


/* --- SEÇÃO DE RESGATE (Requerido em Loja/Scripts) --- */
.resgate-section {
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid rgba(255,215,0,0.2);
}
.resgate-section form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    transform: skewX(-2deg);
}
.resgate-section input {
    padding: 12px;
    border: 2px solid #333;
    background: #111;
    color: #fff;
    border-radius: 6px;
    width: 300px;
}
.resgate-section button {
    padding: 12px 25px;
    background: #FFD700;
    color: #000;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transform: skewX(5deg);
}


/* --- CARDS E PRODUTOS (Scripts e Sprites) --- */
.category-section {
    padding: 80px 20px;
    border-bottom: 5px solid rgba(255,215,0,0.2);
    text-align: center;
}
.scripts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.card {
    background: #1a1a1a;
    border: 2px solid rgba(255,215,0,0.5);
    padding: 30px;
    border-radius: 12px;
    width: 340px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: all 0.3s;
    transform: skewX(-2deg);
    position: relative;
}
.card:hover {
    transform: translateY(-8px) skewX(-2deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(255,215,0,0.2);
}
.card h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #FFD700;
    font-size: 30px;
}
.card p {
    font-size: 16px;
    color: #ccc;
}
.card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}
.card li {
    margin: 8px 0;
    font-size: 15px;
}
.card li i {
    color: #FFD700;
    margin-right: 10px;
}

/* Preços */
.price-info {
    border: 1px dashed #444;
    padding: 15px;
    background: #000;
    transition: 0.3s;
}
.price-main {
    font-size: 30px;
    font-weight: 800;
    color: #00e676;
    text-shadow: 0 0 8px rgba(0, 230, 118, 0.6);
}
.cupom-highlight {
    color: #FFD700;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

/* Botões de Ação (Abaixo do Preço) */
.card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}
.btn-compra-final {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    color: #000;
    font-weight: 700;
    border-radius: 6px;
    padding: 15px 35px;
    font-size: 18px;
    transform: skewX(5deg);
    box-shadow: 0 0 15px rgba(255,215,0,0.7);
    transition: 0.3s;
    display: block;
}
.btn-compra-final:hover {
    transform: translateY(-2px) skewX(5deg);
    box-shadow: 0 5px 30px rgba(255,240,0,0.8);
}
.btn-video-new, .btn-image-new { /* Unificado para media buttons */
    background: #222;
    color: #ccc;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 10px 35px;
    font-size: 16px;
    transform: skewX(5deg);
    transition: 0.3s;
    display: block;
}
.btn-video-new:hover, .btn-image-new:hover {
    background: #333;
    border-color: #ff3d00;
    color: #ff3d00;
}

/* Cores por categoria (para H2s de seção) */
#tibia h2 { color: #ff9f00; text-shadow: 0 0 15px #ff9f00aa; }
#pxg h2 { color: #00bcd4; text-shadow: 0 0 15px #00bcd4aa; }
#narutibia h2 { color: #e91e63; text-shadow: 0 0 15px #e91e63aa; }
.naruto-btn {
    background: linear-gradient(135deg, #e91e63 0%, #cc0099 100%);
    box-shadow: 0 0 15px #e91e63aa;
    color: #fff !important;
}

/* FAQ */
.faq-item h4 {
    font-family: 'Roboto Condensed', sans-serif;
    color: #FFD700;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.faq-item p {
    font-family: 'Roboto Condensed', sans-serif;
}

/* Footer (Mantido simples, se precisar do CSS completo do Footer, ele deve ser adicionado aqui) */
footer {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #555;
    background: #000;
    border-top: 1px solid #111;
}

/* RESPONSIVIDADE GERAL (Do seu código anterior) */
@media (max-width: 768px) {
    .card { width: 95%; transform: none !important; }
    .card-actions .btn-compra-final, .card-actions .btn-video-new, .card-actions .btn-image-new { transform: none !important; }
    .resgate-section button { transform: none !important; }
    .card { transform: none !important; }
    .faq-item { transform: none !important; }
}