/* =========================================
   PORTAL.CSS - VERSIÓN MAESTRA FINAL
   (Colores Dinámicos + UX Premium)
   ========================================= */

:root {
    --cairo-cyan: #00F0FF; 
    --cairo-electric-blue: #2962FF; 
    --cairo-orange: #FF5100; 
    --bg-dark: #050505;
    --text-white: #ffffff;
    --text-gray: #ccc;
    --error-red: #ff4d4d;
    --deep-blue-bg: #081028;
    --deep-bg-gradient: radial-gradient(circle at center, #0a1535 0%, #000000 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--deep-bg-gradient);
    color: var(--text-white);
    height: 100vh; width: 100vw; overflow: hidden; 
    display: flex; flex-direction: column;
    animation: fadeInPage 0.8s ease-out forwards;
}

@keyframes fadeInPage { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }

/* LOADER */
#cairo-loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #050505; z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}
#cairo-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-orb {
    width: 70px; height: 70px; border-radius: 50%; position: relative; margin-bottom: 40px;
    background: conic-gradient(from 0deg, var(--cairo-cyan), var(--cairo-electric-blue), var(--cairo-orange), var(--cairo-cyan));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
    animation: spinOrb 1.2s linear infinite;
}
@keyframes spinOrb { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loader-text {
    font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 900; letter-spacing: 6px; text-transform: uppercase;
    position: relative; color: rgba(255, 255, 255, 0.1); 
    background: linear-gradient(to right, rgba(255,255,255,0.1) 0%, #ffffff 50%, rgba(255,255,255,0.1) 100%);
    background-size: 50% 100%; background-repeat: no-repeat;
    -webkit-background-clip: text; background-clip: text;
    animation: shineMove 2.5s infinite linear;
}
@keyframes shineMove { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* LOGIN / REGISTER */
.split-screen { display: flex; width: 100%; height: 100%; }
.split-pane.left { flex: 1; background: #000; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.visual-container { width: 100%; height: 100%; position: relative; }
.visual-content { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.visual-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(41, 98, 255, 0.4), rgba(0, 0, 0, 0.9)); z-index: 2; }
.visual-quote { position: absolute; bottom: 80px; left: 60px; z-index: 3; max-width: 450px; }
.quote-text { font-size: 2.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; background: linear-gradient(135deg, #fff, var(--cairo-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.quote-author { font-size: 1rem; color: var(--text-gray); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; gap: 10px; }
.quote-author::before { content: ''; width: 30px; height: 2px; background: var(--cairo-orange); display: block; }

.split-pane.right { flex: 0 0 500px; background: #0a0a0a; display: flex; flex-direction: column; justify-content: center; padding: 40px; border-left: 1px solid rgba(255,255,255,0.1); position: relative; box-shadow: -20px 0 50px rgba(0,0,0,0.5); }
@media (max-width: 900px) { .split-pane.left { display: none; } .split-pane.right { flex: 1; width: 100%; padding: 25px; } }

.auth-header { margin-bottom: 20px; text-align: center; }
.logo-small { font-size: 1.5rem; font-weight: 900; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--text-white); text-decoration: none; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(145deg, #FF8F50 0%, #2962FF 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1.4rem; box-shadow: 0 4px 20px rgba(41, 98, 255, 0.4); }
.auth-title { font-size: 2rem; font-weight: 800; margin-bottom: 5px; color: white; }
.auth-subtitle { color: var(--text-gray); font-size: 0.95rem; }
.btn-google { width: 100%; padding: 12px; background: white; color: #333; border-radius: 12px; border: none; font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 12px; cursor: pointer; margin-bottom: 15px; position: relative; transition: transform 0.2s; }
.btn-google:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.15); }
.divider { display: flex; align-items: center; text-align: center; color: var(--text-gray); font-size: 0.8rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid rgba(255,255,255,0.1); }
.divider::before { margin-right: 15px; } .divider::after { margin-left: 15px; }

/* INPUTS */
.input-group { margin-bottom: 15px; position: relative; width: 100%; }
.cairo-input { 
    width: 100%; padding: 14px; 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 12px; color: white; 
    font-size: 0.95rem; font-family: inherit; transition: all 0.3s ease; 
}
/* Fix Autocompletar Blanco Chrome */
.cairo-input:-webkit-autofill,
.cairo-input:-webkit-autofill:hover, 
.cairo-input:-webkit-autofill:focus, 
.cairo-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0a0a0a inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}
.cairo-input:focus { outline: none; border-color: var(--cairo-cyan); box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.15); background: rgba(0, 240, 255, 0.05); }

/* Fuerza de contraseña */
.cairo-input.weak { border-color: var(--error-red) !important; box-shadow: 0 0 0 1px var(--error-red) !important; }
.cairo-input.medium { border-color: #ffd700 !important; box-shadow: 0 0 0 1px #ffd700 !important; }
.cairo-input.strong { border-color: #00e676 !important; box-shadow: 0 0 0 1px #00e676, 0 0 10px rgba(0, 230, 118, 0.2) !important; }

.password-toggle { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--text-gray); cursor: pointer; padding: 5px; display: flex; align-items: center; justify-content: center; z-index: 10; }
.password-toggle:hover { color: #fff; }

.btn-primary { 
    width: 100%; padding: 14px; margin-top: 10px; 
    background: linear-gradient(135deg, var(--cairo-orange), #ff7b00); 
    border: none; border-radius: 12px; 
    color: white; font-size: 1.1rem; font-weight: 800; cursor: pointer; 
    box-shadow: 0 10px 30px rgba(255, 81, 0, 0.3); transition: all 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 50px rgba(255, 81, 0, 0.6); }

.auth-footer { text-align: center; margin-top: 25px; font-size: 0.9rem; color: var(--text-gray); }
.auth-footer a { color: var(--cairo-cyan); font-weight: 700; text-decoration: none; }
.form-section-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cairo-cyan); margin-bottom: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.form-section-title::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.form-row { display: flex; gap: 15px; width: 100%; }
.form-row .input-group { flex: 1; margin-bottom: 0; }

/* DROPDOWNS */
.custom-dropdown { position: relative; width: 100%; cursor: pointer; }
.dropdown-trigger { width: 100%; padding: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: var(--text-gray); font-size: 0.95rem; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s; }
.dropdown-trigger:hover { border-color: var(--cairo-cyan); }
.dropdown-options { position: absolute; top: 110%; left: 0; width: 100%; background: var(--deep-blue-bg); border: 1px solid rgba(41, 98, 255, 0.3); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.8); display: none; z-index: 100; overflow: hidden; }
.custom-dropdown.active .dropdown-options { display: block; animation: fadeIn 0.2s; }
.dropdown-option { padding: 12px 15px; color: #ccc; font-size: 0.9rem; transition: background 0.2s; display: flex; justify-content: space-between; align-items: center; }
.dropdown-option:hover { background: rgba(0, 240, 255, 0.1); color: #fff; }
.dropdown-option.selected { background: rgba(0, 240, 255, 0.15); color: white; }
.check-icon { font-size: 1rem; color: var(--cairo-cyan); opacity: 0; transition: opacity 0.2s; }
.dropdown-option.selected .check-icon { opacity: 1; }
.checkbox-group { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #ccc; margin-top: 20px; }
.checkbox-group a { text-decoration: none; }

/* DASHBOARD HEADER */
.dashboard-container { display: flex; flex-direction: column; height: 100vh; width: 100vw; background: var(--deep-bg-gradient); position: relative; overflow: hidden; }
.app-header { position: absolute; top: 0; left: 0; width: 100%; height: 80px; background: linear-gradient(90deg, rgba(255, 81, 0, 0.85) 0%, rgba(41, 98, 255, 0.85) 60%, rgba(0, 240, 255, 0.85) 100%); backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 30px; z-index: 100; pointer-events: none; }
.header-left { width: 100%; height: 100%; }
.logo-centered, .user-controls { pointer-events: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.logo-centered { justify-self: center; }
.user-controls { justify-self: end; display: flex; align-items: center; gap: 20px; }

.btn-icon { background: rgba(0, 0, 0, 0.3); border: 1.5px solid rgba(255, 255, 255, 0.7); color: #fff; cursor: pointer; position: relative; display: flex; align-items: center; justify-content: center; transition: all 0.3s; width: 42px; height: 42px; border-radius: 50%; backdrop-filter: blur(5px); }
.btn-icon:hover { background: rgba(0, 0, 0, 0.6); border-color: #fff; transform: scale(1.05); }
.notification-dot { position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; background: var(--cairo-orange); border-radius: 50%; border: 1px solid #fff; }

.user-avatar-btn { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--cairo-electric-blue), var(--cairo-cyan)); border: 2px solid rgba(255, 255, 255, 0.8); color: #fff; font-weight: 800; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.user-avatar-btn:hover { transform: scale(1.05); border-color: #fff; }

.notifications-dropdown, .profile-dropdown, .logout-card { background: var(--deep-blue-bg); border: 1px solid rgba(41, 98, 255, 0.3); border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 20px rgba(41, 98, 255, 0.05) inset; z-index: 1000; pointer-events: auto; color: #fff; }
.notifications-dropdown, .profile-dropdown { position: absolute; top: 85px; right: 30px; display: none; flex-direction: column; gap: 10px; }
.active { display: flex !important; animation: fadeIn 0.2s ease-out; }
.notifications-dropdown { right: 85px; width: 300px; padding: 15px; }
.profile-dropdown { width: auto; min-width: 260px; max-width: 380px; padding: 20px; right: 30px; }
.notif-header, .dropdown-header { margin-bottom: 5px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.notif-header { text-align: center; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; font-size: 0.9rem; }
.dropdown-header { text-align: left; }
.d-name { display: block; color: white; font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; white-space: normal; line-height: 1.3; }
.d-email { display: block; color: var(--text-gray); font-size: 0.8rem; font-weight: 400; opacity: 0.7; word-break: break-all; }
.notif-item { padding: 10px; background: rgba(255,255,255,0.05); border-radius: 8px; font-size: 0.85rem; color: #ccc; display: flex; gap: 10px; align-items: flex-start; }
.notif-icon { color: var(--cairo-cyan); font-size: 1.2rem; }
.dropdown-item { padding: 12px 15px; color: var(--text-white) !important; text-decoration: none; font-size: 0.9rem; border-radius: 8px; font-weight: 500; display: flex; align-items: center; gap: 12px; transition: background 0.2s; }
.dropdown-item .material-icons-round { color: var(--cairo-cyan); }
.dropdown-item:hover { background: linear-gradient(90deg, rgba(0, 240, 255, 0.15), transparent); color: var(--cairo-cyan) !important; border-left: 3px solid var(--cairo-cyan); }
.dropdown-item.danger { color: #ffcccc !important; }
.dropdown-item.danger .material-icons-round { color: var(--error-red); }
.dropdown-item.danger:hover { background: rgba(255, 77, 77, 0.15); color: var(--error-red) !important; border-left: 3px solid var(--error-red); }

.chat-iframe-container { width: 100vw; height: 100vh; position: absolute; top: 0; left: 0; z-index: 1; background: #000; }
.chat-frame { width: 100%; height: 100%; border: none; display: block; }
.cairo-side-tab { position: fixed; right: 0; top: 50%; transform: translateY(-50%); padding: 25px 8px; background: linear-gradient(180deg, var(--cairo-cyan), var(--cairo-electric-blue)); color: #fff; border-radius: 12px 0 0 12px; box-shadow: -5px 0 20px rgba(0, 240, 255, 0.3); cursor: pointer; z-index: 2000; writing-mode: vertical-rl; text-orientation: mixed; font-weight: 800; letter-spacing: 2px; font-size: 0.85rem; text-transform: uppercase; transition: all 0.3s ease; }
.cairo-side-tab:hover { padding: 25px 14px; background: linear-gradient(180deg, var(--cairo-orange), var(--cairo-electric-blue)); box-shadow: -5px 0 30px rgba(255, 81, 0, 0.5); }

/* ASISTENTE CAIRO */
.assistant-panel {
    position: fixed; top: 50%; transform: translate(120%, -50%); /* Oculto derecha */
    right: 70px !important; left: auto !important; width: 380px; height: 70vh; max-height: 700px; max-width: calc(100vw - 90px);
    z-index: 20000; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid transparent; border-radius: 24px;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, var(--cairo-cyan), var(--cairo-electric-blue), var(--cairo-orange));
    background-origin: border-box; background-clip: padding-box, border-box;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; overflow: hidden;
}
.assistant-panel.active { transform: translate(0, -50%) !important; }

.assistant-header { padding: 20px 25px; background: rgba(255, 255, 255, 0.9); border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(10px); }
.assistant-brand { display: flex; align-items: center; gap: 12px; font-size: 1.2rem; font-weight: 800; letter-spacing: -0.5px; padding-right: 10px; background: linear-gradient(90deg, #081028, var(--cairo-electric-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.close-panel-btn { background: none; border: none; color: #666; cursor: pointer; font-size: 1.5rem; }

.assistant-body { flex: 1; padding: 25px; overflow-y: auto; background-color: #ffffff; background-image: radial-gradient(circle at 0% 0%, rgba(0, 240, 255, 0.08), transparent 50%), radial-gradient(circle at 100% 100%, rgba(255, 81, 0, 0.08), transparent 50%); display: flex; flex-direction: column; gap: 20px; }
.chat-msg { max-width: 85%; padding: 14px 18px; font-size: 0.95rem; line-height: 1.6; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.chat-msg.bot { align-self: flex-start; background: #ffffff; color: #333; border-radius: 4px 20px 20px 20px; border: 1px solid rgba(0,0,0,0.05); }
.chat-msg.user { align-self: flex-end; background: linear-gradient(135deg, var(--cairo-electric-blue), var(--cairo-cyan)); color: white; font-weight: 500; border-radius: 20px 4px 20px 20px; box-shadow: 0 4px 15px rgba(41, 98, 255, 0.25); }

.assistant-footer { padding: 20px 25px; background: #ffffff; border-top: 1px solid rgba(0,0,0,0.05); }
.input-container-fancy { position: relative; display: flex; align-items: center; background: #f4f6f8; border-radius: 30px; padding: 6px 6px 6px 20px; border: 1px solid transparent; transition: all 0.3s ease; }
.input-container-fancy:focus-within { background: #fff; border-color: var(--cairo-cyan); box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.15); }
.assistant-input { flex: 1; background: transparent; border: none; color: #1a1a1a; font-size: 1rem; outline: none; font-family: 'Inter', sans-serif; }
.assistant-input::placeholder { color: #aaa; }
.btn-send-fancy { width: 44px; height: 44px; border-radius: 50%; border: none; background: linear-gradient(135deg, #FF5100, #FF9100); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 12px rgba(255, 81, 0, 0.3); }
.btn-send-fancy:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(255, 81, 0, 0.5); }

/* --- MODAL OVERLAY OSCURO --- */
.logout-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(8, 16, 40, 0.95), rgba(0, 0, 0, 0.98)); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 99999; display: none; align-items: center; justify-content: center; }
.logout-modal-overlay.active { display: flex; animation: fadeInOverlay 0.4s ease-out forwards; }
@keyframes fadeInOverlay { from { opacity: 0; backdrop-filter: blur(0px); } to { opacity: 1; backdrop-filter: blur(10px); } }

.logout-card { width: 90%; max-width: 400px; padding: 35px; text-align: center; background: var(--deep-blue-bg); border: 1px solid rgba(41, 98, 255, 0.3); border-radius: 16px; box-shadow: 0 20px 80px rgba(0,0,0, 0.6); }
.logout-icon { font-size: 3.5rem; color: var(--cairo-orange); margin-bottom: 20px; }
.logout-title { font-size: 1.6rem; font-weight: 800; color: white; margin-bottom: 10px; }
.logout-text { color: var(--text-gray); margin-bottom: 30px; font-size: 1rem; line-height: 1.5; }
.logout-actions { display: flex; gap: 15px; justify-content: center; }
.btn-cancel { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: white; padding: 12px 24px; border-radius: 10px; cursor: pointer; font-weight: 600; flex: 1; transition: all 0.2s; }
.btn-cancel:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* --- BOTÓN CONFIRMAR DEFAULT (ESTÁNDAR = CIAN) --- */
.btn-confirm { 
    background: linear-gradient(135deg, var(--cairo-cyan), var(--cairo-electric-blue)); /* Default Cian */
    border: none; color: #000; /* Texto oscuro para cian */
    padding: 12px 24px; border-radius: 10px; cursor: pointer; font-weight: 700; flex: 1; 
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3); transition: all 0.2s; 
}
.btn-confirm:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 240, 255, 0.5); }

/* UTILIDADES */
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.rotating { animation: spin 1s linear infinite; display: inline-block; }
.btn-pay:disabled { background: #333; color: #888; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* SELECTS MODAL */
#profileSetupModal select.cairo-input { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-color: rgba(20, 30, 60, 0.6) !important; color: #ffffff !important; border: 1px solid rgba(255, 255, 255, 0.15); cursor: pointer; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 10px center; background-size: 24px; padding-right: 35px; }
#profileSetupModal select.cairo-input:focus { border-color: var(--cairo-cyan); background-color: rgba(20, 30, 60, 0.9) !important; }
#profileSetupModal select.cairo-input option { background-color: #081028 !important; color: #ffffff !important; padding: 12px; }

/* TOAST */
.cairo-toast { visibility: hidden; min-width: 250px; background-color: var(--deep-blue-bg); color: #fff; text-align: center; border-radius: 12px; padding: 16px; position: fixed; z-index: 10000; left: 50%; bottom: 30px; transform: translateX(-50%); border: 1px solid var(--cairo-cyan); box-shadow: 0 10px 30px rgba(0,0,0,0.5); font-size: 0.95rem; opacity: 0; transition: opacity 0.5s, bottom 0.5s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.cairo-toast.show { visibility: visible; opacity: 1; bottom: 50px; }

/* TEMA PLUS (VIP) */
body.theme-plus { --accent-color: var(--cairo-orange); }
.theme-plus .badge-plus-mode { background: rgba(255, 81, 0, 0.15) !important; border-color: var(--cairo-orange) !important; color: var(--cairo-orange) !important; box-shadow: 0 0 15px rgba(255, 81, 0, 0.2); }
.theme-plus .btn-primary { background: linear-gradient(135deg, #FF5100 0%, #FFD700 100%) !important; box-shadow: 0 10px 30px rgba(255, 81, 0, 0.4) !important; border: 1px solid rgba(255, 215, 0, 0.3); }
.theme-plus .btn-primary:hover { box-shadow: 0 15px 50px rgba(255, 81, 0, 0.7) !important; }
.theme-plus .text-highlight { color: #FFD700 !important; }
.avatar-plus-border { border: 3px solid #FFD700 !important; box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), inset 0 0 10px rgba(255, 215, 0, 0.5) !important; animation: pulseGoldIntense 2s infinite alternate; }
@keyframes pulseGoldIntense { 0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), inset 0 0 5px rgba(255, 215, 0, 0.3); border-color: #FFD700; } 100% { box-shadow: 0 0 35px rgba(255, 81, 0, 0.9), inset 0 0 15px rgba(255, 81, 0, 0.6); border-color: #FF5100; } }

/* CURSOR Y OTROS */
.cairo-input, input, textarea, select { caret-color: var(--cairo-cyan); }
.cairo-input::placeholder { color: rgba(255, 255, 255, 0.4); }

/* ALERTA HOLOGRÁFICA */
.center-overlay { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); width: auto; min-width: 350px; max-width: 90%; padding: 40px 50px; text-align: center; z-index: 99999; background: rgba(10, 15, 30, 0.85); backdrop-filter: blur(20px); border-radius: 30px; border: 2px solid transparent; background-image: linear-gradient(rgba(10, 15, 30, 0.9), rgba(10, 15, 30, 0.9)), linear-gradient(135deg, var(--cairo-cyan), var(--cairo-electric-blue), var(--cairo-orange)); background-origin: border-box; background-clip: padding-box, border-box; box-shadow: 0 30px 80px rgba(0,0,0,0.6); opacity: 0; pointer-events: none; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.center-overlay.show { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: all; }
.overlay-icon-container { margin-bottom: 20px; }
.overlay-icon-container .material-icons-round { font-size: 4rem; background: linear-gradient(135deg, var(--cairo-cyan), var(--cairo-electric-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.4)); }
.center-overlay h2 { font-size: 1.8rem; margin: 0 0 10px 0; color: white; font-weight: 800; }
.center-overlay p { font-size: 1.1rem; color: #ccc; margin: 0; line-height: 1.5; }

/* --- CLASE DE APOYO PARA JS (MODAL NARANJA) --- */
.btn-confirm-plus {
    background: #FF5100 !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 81, 0, 0.4) !important;
}