/* --- CONFIGURAÇÕES DE CORES (PALETA) --- */
:root {
    --primary-color: #E86f9E;       /* Rosa Claro */
    --secondary-color: #8F244D;     /* Vinho/Roxo */
    --accent-color: #ffce00;        /* Dourado */
    
    --bg-dark: #0f0f13;             
    --card-bg: rgba(30, 30, 35, 0.7); 
    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    --border-light: 1px solid rgba(255, 255, 255, 0.1);
    --glow: 0 0 20px rgba(232, 111, 158, 0.3); 
}

/* --- ANIMAÇÃO RGB (ADICIONADO) --- */
@keyframes rainbow-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

html {
    scroll-behavior: smooth;
}

/* --- RESET BÁSICO --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif; 
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top, #2a101b 0%, transparent 60%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- CABEÇALHO --- */
header {
    padding: 20px 0;
    border-bottom: var(--border-light);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 500; /* Mudei de 100 para 500 para ficar acima de tudo */
    background: rgba(15, 15, 19, 0.8);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-weight: 700; font-size: 1.5rem; letter-spacing: -1px; }
.logo span { color: var(--primary-color); }

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover, nav a.active { color: var(--primary-color); }

/* --- INTRO --- */
.intro {
    text-align: center;
    padding: 60px 0 40px;
}
.intro h2 { font-size: 2.5rem; margin-bottom: 10px; }
.intro p { color: var(--text-muted); }

/* --- GRID DE CARDS --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

/* --- O CARD (DESIGN) --- */
.card {
    background: var(--card-bg);
    border: var(--border-light);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--secondary-color);
}

.card-header { text-align: center; margin-bottom: 25px; }

/* Estilo padrão do título */
.card-header h3 { 
    font-size: 1.5rem; 
    color: var(--primary-color); 
    text-transform: uppercase; 
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.card-body { flex-grow: 1; margin-bottom: 25px; }
.card-body ul { list-style: none; }
.card-body li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #ddd;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-body li:last-child { border-bottom: none; }

.card-footer form { display: flex; flex-direction: column; gap: 10px; }

input {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    outline: none;
    transition: 0.3s;
}

input:focus { border-color: var(--primary-color); }

button {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: filter 0.3s;
}

button:hover { filter: brightness(1.2); }

/* --- CARD DESTAQUE (MVP+) --- */
.card.featured {
    border: 1px solid var(--primary-color);
    box-shadow: var(--glow);
    background: linear-gradient(180deg, rgba(143, 36, 77, 0.2) 0%, rgba(30, 30, 35, 0.8) 100%);
}

/* Efeito RGB no título do MVP+ */
.card.featured h3 {
    background: linear-gradient(90deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow-move 5s linear infinite;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.2));
}

/* Efeito RGB na Badge (Vip Incluso) do MVP+ */
.card.featured .badge {
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    animation: rainbow-move 3s linear infinite;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    box-shadow: 0 0 15px rgba(232, 111, 158, 0.5);
    border: 1px solid rgba(255,255,255,0.3);
}

/* --- BADGE BASE --- */
.badge {
    position: absolute;
    top: -15px;          
    right: 20px;         
    
    transform: none;     
    width: auto;
    padding: 6px 15px;
    border-radius: 4px;  
    
    background: var(--primary-color);
    color: #fff;
    
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); 
    z-index: 100;
    border: 1px solid rgba(255,255,255,0.2); 
}

/* --- CARD SAMURAI --- */
.card.samurai {
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 206, 0, 0.2);
}

/* Efeito RGB no título do SAMURAI */
.card.samurai h3 { 
    background: linear-gradient(90deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow-move 5s linear infinite;
}

.card.samurai button {
    background: linear-gradient(45deg, #FF8C00, var(--accent-color));
    color: #000;
}

/* Efeito RGB na Badge do SAMURAI */
.card.samurai .badge { 
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    animation: rainbow-move 3s linear infinite;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.3);
}

footer {
    background: rgba(0,0,0,0.5);
    padding: 30px 0;
    text-align: center;
    border-top: var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .intro h2 { font-size: 1.8rem; }
    .cards-grid { grid-template-columns: 1fr; }
}

/* --- ESTILOS DO MODAL --- */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-box {
    background: #1e1e23;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--primary-color);
    box-shadow: var(--glow);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px; right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.modal-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.modal-box h2 {
    margin-bottom: 10px;
    color: #fff;
}

.modal-steps {
    text-align: left;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #ddd;
}
.modal-steps p { margin-bottom: 5px; }

.btn-discord {
    display: block;
    width: 100%;
    background-color: #5865F2; /* Azul Discord */
    color: white;
    padding: 15px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
}
.btn-discord:hover { background-color: #4752c4; }


/* FECHAR DESCONTO COMENTE TODA ESSA LINHA ATÉ O FINAL ->*/
/*Estilo do preço antigo (Riscado) */
.preco-antigo {
    display: block;
    text-decoration: line-through;
    color: #ff4d4d; /* Vermelho */
    font-size: 0.5em; /* Menor que o preço atual */
    opacity: 0.8;
    margin-bottom: -5px;
}

/* Estilo do preço novo (Destaque) */
.preco-novo {
    color: #00ff00; /* Verde Neon */
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

/* Badge de desconto opcional nos cards */
.card::before {
    content: "25% OFF";
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 10;
}


/* --- BANNER DE NATAL (TOPO DO SITE) --- */
.promo-header {
    background: linear-gradient(90deg, #1a1a2e, #c0392b, #1a1a2e); /* Cores natalinas profundas */
    background-size: 200% auto;
    animation: rainbow-move 5s linear infinite; /* Usa a animação que você já tem no css */
    text-align: center;
    padding: 12px 10px;
    border-bottom: 2px solid var(--accent-color); /* Usa o dourado da sua paleta */
    width: 100%;
}

.promo-main a {
    color: #ffffff;
    text-decoration: none; /* Remove o sublinhado do link */
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block; /* Faz o link ocupar a linha toda para facilitar o clique */
    transition: transform 0.2s;
}

.promo-main a:hover {
    transform: scale(1.02); /* Leve pulo ao passar o mouse */
    color: var(--accent-color); /* Muda para dourado no hover */
}

.promo-sub {
    color: #bdc3c7; /* Cinza claro para não brigar com o título */
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 400;
}

/* Garante que o banner não fique escondido atrás do header fixo */
body {
    padding-top: 0; 
}
/* --- AJUSTE DOS PREÇOS NOS CARDS --- */
.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-suffix {
    color: #ccc; /* Cor cinzinha */
    font-size: 0.45em; /* Menor que o valor */
    font-weight: 500;
}
