/* assets/css/promo-style.css */
:root {
    --primary-color: #ffc107;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --border-color: #333;
    --text-light: #f8f9fa;
    --text-secondary: #adb5bd;
}
body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}
header {
    background: linear-gradient(135deg, rgba(18,18,18,0.95), rgba(30,30,30,1));
    padding: 80px 20px;
    border-bottom: 1px solid var(--border-color);
}
header h1 { font-size: 3rem; font-weight: 700; color: var(--primary-color); }
header p { font-size: 1.25rem; color: var(--text-secondary); max-width: 700px; }
.hero-character { max-height: 350px; width: auto; }
.countdown-container { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.countdown-box { background-color: var(--card-bg); border: 2px solid var(--border-color); border-radius: 12px; padding: 15px 20px; text-align: center; width: 100px; }
.countdown-box span:first-child { display: block; font-size: 2.5rem; font-weight: 700; color: var(--primary-color); }
.countdown-box span:last-child { display: block; font-size: 0.8rem; font-weight: 400; text-transform: uppercase; }
.promo-section { padding: 60px 20px; }
.guarantee-banner { background: var(--card-bg); color: var(--primary-color); padding: 15px; text-align: center; font-weight: 600; border-radius: 8px; }
.filter-buttons .btn { background-color: var(--card-bg); border: 1px solid var(--border-color); color: var(--text-secondary); }
.filter-buttons .btn.active { background-color: var(--primary-color); color: var(--dark-bg); border-color: var(--primary-color); font-weight: 600; }
.card { background: var(--card-bg); border: 1px solid var(--border-color); border-top: 4px solid var(--primary-color); border-radius: 12px; transition: all 0.3s ease-in-out; text-align: center; display: flex; flex-direction: column; overflow: hidden; }
.card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(255,193,7,0.2); }
.card-body { display: flex; flex-direction: column; flex-grow: 1; padding: 2rem; }
.card-title {
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-light); /* <-- AÑADE ESTA LÍNEA */
}
.card-location { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.5rem; }
.features-list { text-align: left; margin-bottom: 1.5rem; flex-grow: 1; }
.features-list li { display: flex; align-items: center; margin-bottom: 10px; }
.features-list i { color: var(--primary-color); margin-right: 12px; width: 20px; }
.price { font-size: 2.5rem; font-weight: 700; margin: 1rem 0; color: var(--primary-color); }
.price-term { font-size: 1rem; font-weight: 400; color: var(--text-secondary); }
.btn-buy { background: var(--primary-color); color: var(--dark-bg); font-weight: 600; padding: 12px 25px; border-radius: 8px; text-decoration: none; text-transform: uppercase; }
.btn-buy:hover { background: #e6b800; }
.featured-badge { position: absolute; top: 20px; right: -30px; background-color: var(--primary-color); color: var(--dark-bg); padding: 5px 30px; transform: rotate(45deg); font-weight: 600; font-size: 0.9rem; }
.stock-indicator { color: #dc3545; font-size: 0.9rem; font-weight: 600; margin-top: 10px; }

.promo-section .card .features-list li {
    color: var(--text-secondary); /* Un color gris claro que ya tenemos definido */
}

/* Raffle Banner Styles */
.raffle-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.raffle-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.raffle-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.raffle-content {
    position: relative;
    z-index: 1;
}

.raffle-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.raffle-content h3 i {
    margin-right: 10px;
}

.raffle-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.prize-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.prize-item:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.prize-item i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.prize-item strong {
    color: var(--text-light);
    font-size: 0.95rem;
    display: block;
}

.prize-item.total-winners {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
}

.prize-item.total-winners strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
    .raffle-banner {
        padding: 20px;
    }
    
    .raffle-content h3 {
        font-size: 1.4rem;
    }
    
    .raffle-icon {
        font-size: 2.5rem;
        top: 10px;
        right: 10px;
    }
}
