:root {
    --bg: #020617;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --glass: rgba(15, 23, 42, 0.8);
    --border: rgba(255, 255, 255, 0.1);
}

body { background: var(--bg); color: #fff; font-family: 'Outfit', sans-serif; overflow-x: hidden; }

/* EFECTO DE LUZ DE FONDO */
.glow-bg {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 100%; height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(80px); z-index: -1;
}

/* BURBUJAS FLOTANTES */
.floating-controls { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
.bubble { 
    width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer; 
    font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5); transition: 0.3s;
}
.faq-bubble { background: #1e293b; color: var(--gold); border: 1px solid var(--gold); }
.chat-bubble { background: var(--gold); color: #000; }
.bubble:hover { transform: scale(1.1) rotate(5deg); }

/* VENTANAS DE CRISTAL */
.glass-window {
    display: none; position: absolute; bottom: 80px; right: 0;
    width: 320px; max-height: 450px; background: var(--glass);
    backdrop-filter: blur(20px); border: 1px solid var(--border);
    border-radius: 20px; flex-direction: column; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.window-header { padding: 15px; background: rgba(0,0,0,0.2); font-weight: 900; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border); }

/* FAQ INTERNA */
.faq-list { padding: 15px; }
.faq-q { 
    padding: 12px; margin-bottom: 8px; background: rgba(255,255,255,0.05); 
    border-radius: 10px; cursor: pointer; font-size: 0.9rem; transition: 0.3s;
}
.faq-q:hover { background: var(--gold); color: #000; }

/* RESULTADOS CARDS */
.result-card { 
    min-width: 280px; margin: 0 15px; background: var(--glass); 
    border-radius: 20px; overflow: hidden; border: 1px solid var(--border);
}
.result-card img { width: 100%; height: 200px; object-fit: cover; }
.result-card span { display: block; padding: 15px; text-align: center; color: var(--gold); font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .floating-controls { bottom: 20px; right: 20px; }
    .glass-window { width: 280px; right: -10px; }
}