/* css/main.css */
:root {
    --compita-green: #39FF14;
    --compita-orange: #FF5500;
    --background-dark: #080808;
    --surface-dark: #111111;
    --border-dark: #2a2a2a;
}

body {
    background-color: var(--background-dark);
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
}

.font-display { font-family: 'Montserrat', sans-serif; }
.font-impact { font-family: 'Teko', sans-serif; }

.skew-box { transform: skewX(-12deg); }
.unskew-text { transform: skewX(12deg); display: inline-block; }

.text-glow-green { text-shadow: 0 0 15px rgba(57,255,20,0.5); }
.text-glow-orange { text-shadow: 0 0 15px rgba(255,85,0,0.6); }

.btn-compita {
    background: linear-gradient(90deg, #FF5500, #ff2200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-compita:hover {
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.6);
    transform: translateY(-2px);
}

.navbar-compita {
    background: rgba(8, 8, 8, 0.8) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.footer-compita {
    background: var(--background-dark);
    border-top: 1px solid var(--border-dark);
}

.animate-marquee { display: flex; animation: marquee 20s linear infinite; width: max-content; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: var(--compita-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
    transform: translateY(-5px);
}

/* Neon Glow Animation */
.neon-pulse {
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from { box-shadow: 0 0 5px rgba(57, 255, 20, 0.2); }
    to { box-shadow: 0 0 20px rgba(57, 255, 20, 0.5); }
}

/* Mobile Floating Button */
.mobile-buy-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-buy-btn {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        z-index: 100;
        background: linear-gradient(90deg, #FF5500, #ff2200);
        padding: 18px;
        border-radius: 12px;
        justify-content: center;
        align-items: center;
        font-weight: 900;
        color: white;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
        box-shadow: 0 10px 25px rgba(255, 85, 0, 0.4);
        animation: slideUp 0.5s ease-out;
    }
}

@keyframes slideUp {
    from { transform: translateY(100px); }
    to { transform: translateY(0); }
}

/* Trust Badges */
.trust-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
}
/* Promo Stickers Glow - Mejorado para Legibilidad */
.promo-sticker-glow {
    animation: promoPulse 2s infinite alternate ease-in-out;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    aspect-ratio: 1 / 1 !important;
    width: 80px !important;
    height: 80px !important;
    border: 3px solid #222 !important;
    background: #000 !important; /* Fondo negro sólido para máximo contraste */
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    z-index: 50;
    transform: rotate(12deg);
}

.promo-sticker-glow p {
    color: var(--compita-green) !important;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    line-height: 1 !important;
}

.promo-sticker-glow .promo-qty {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: 900 !important;
}

@media (min-width: 768px) {
    .promo-sticker-glow {
        width: 100px !important;
        height: 100px !important;
    }
}

@keyframes promoPulse {
    0% { 
        box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
        transform: rotate(12deg) scale(1);
    }
    100% { 
        box-shadow: 0 0 30px rgba(255, 85, 0, 0.6);
        transform: rotate(12deg) scale(1.05);
    }
}
