/* ============================================
   CONTATOS PRO - TEMA AURORA ÉTEREA
   Design Cinematográfico & Imersivo
   ============================================ */

/* Fontes Premium */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Variáveis do Tema Aurora */
:root {
    /* Cores Primárias - Aurora */
    --aurora-primary: #00d4aa;
    --aurora-secondary: #7c3aed;
    --aurora-accent: #f472b6;
    --aurora-cyan: #06b6d4;
    --aurora-deep: #0f172a;
    
    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f472b6 50%, #00d4aa 75%, #06b6d4 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a1a 0%, #1a1a3e 50%, #16213e 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(0,212,170,0.3) 0%, transparent 70%);
    
    /* Superfícies Glass */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    
    /* Cores de Uso */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --success: #00d4aa;
    --danger: #f43f5e;
    --warning: #fbbf24;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.3);
    
    /* Animações */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--gradient-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   BACKGROUND CINEMATOGRÁFICO - AURORA
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(124, 58, 237, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 212, 170, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(244, 114, 182, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: aurora-shift 20s ease-in-out infinite;
}

@keyframes aurora-shift {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    33% { opacity: 0.8; transform: scale(1.1) rotate(2deg); }
    66% { opacity: 0.9; transform: scale(0.95) rotate(-1deg); }
}

/* Grid de Estrelas Sutil */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 160px 20px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 250px 90px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 300px 30px, rgba(255,255,255,0.2), transparent);
    background-size: 350px 120px;
    pointer-events: none;
    z-index: -1;
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   LAYOUT PRINCIPAL
   ============================================ */
.app-shell {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* ============================================
   SIDEBAR - NAVEGAÇÃO GLASS
   ============================================ */
.sidebar {
    width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 100;
    animation: slide-in-left 0.8s var(--ease-out-expo);
}

@keyframes slide-in-left {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Brand na Sidebar */
.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-hero);
    display: grid;
    place-items: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.3);
}

.brand-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.brand > div:last-child {
    display: flex;
    flex-direction: column;
}

.brand strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Navegação */
.nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--duration-fast) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,212,170,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.nav a:hover,
.nav a.active {
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.nav a:hover::before,
.nav a.active::before {
    opacity: 1;
}

.nav a.active {
    background: linear-gradient(90deg, rgba(0,212,170,0.15) 0%, transparent 100%);
    border-left: 3px solid var(--aurora-primary);
}

/* Ícones de Navegação */
.nav a::after {
    font-family: 'Segoe UI Emoji', sans-serif;
    margin-left: auto;
    opacity: 0.5;
    font-size: 1.1rem;
}

.nav a[href*="/"]:not([href*="/c"]):not([href*="/i"]):not([href*="/u"]):not([href*="/r"])::after { content: '📊'; }
.nav a[href*="contacts"]::after { content: '👥'; }
.nav a[href*="import"]::after { content: '📥'; }
.nav a[href*="users"]::after { content: '⚙️'; }
.nav a[href*="reports"]::after { content: '📈'; }

/* Footer da Sidebar */
.sidebar-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-chip {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    overflow: hidden;
}

.user-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-hero);
}

.user-chip strong {
    font-weight: 600;
    font-size: 0.95rem;
}

.user-chip span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.user-chip small {
    font-size: 0.7rem;
    color: var(--aurora-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* ============================================
   CONTEÚDO PRINCIPAL
   ============================================ */
.content {
    flex: 1;
    margin-left: 300px;
    padding: 2.5rem;
    min-height: 100vh;
    animation: fade-in-up 0.8s var(--ease-out-expo);
}

@keyframes fade-in-up {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.content-auth {
    margin-left: 0;
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 2rem;
}

/* ============================================
   PÁGINAS
   ============================================ */
.page {
    max-width: 1400px;
    margin: 0 auto;
    animation: fade-in-up 0.6s var(--ease-out-expo);
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ============================================
   CARDS & GLASSMORPHISM
   ============================================ */
.card, .stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.card {
    padding: 2rem;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--glass-highlight);
}

.card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--gradient-hero);
    border-radius: 2px;
}

.card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--text-secondary);
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-hero);
    opacity: 0.7;
}

.stat-card:nth-child(2)::before { background: linear-gradient(90deg, #7c3aed, #f472b6); }
.stat-card:nth-child(3)::before { background: linear-gradient(90deg, #f472b6, #00d4aa); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, #00d4aa, #06b6d4); }

.stat-card span {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card strong {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--aurora-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-card.compact strong {
    font-size: 2rem;
}

/* ============================================
   GRIDS
   ============================================ */
.grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ============================================
   FORMULÁRIOS
   ============================================ */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-grid label span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-grid .full {
    grid-column: 1 / -1;
}

input, select, textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--duration-fast) var(--ease-out-expo);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--aurora-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.15);
}

input::placeholder, textarea::placeholder {
    color: var(--text-muted);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--aurora-primary);
    cursor: pointer;
}

/* ============================================
   BOTÕES
   ============================================ */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.button:not(.button-secondary):not(.button-link) {
    background: linear-gradient(135deg, var(--aurora-primary) 0%, var(--aurora-cyan) 100%);
    color: var(--aurora-deep);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.button:not(.button-secondary):not(.button-link):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.button-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.button-secondary:hover {
    background: var(--glass-highlight);
    border-color: var(--glass-highlight);
}

.button-link {
    background: transparent;
    color: var(--aurora-primary);
    padding: 0.5rem;
}

.button-link:hover {
    color: #fff;
    text-shadow: 0 0 20px var(--aurora-primary);
}

.button-danger {
    color: var(--danger) !important;
}

.button-danger:hover {
    color: #fff !important;
    text-shadow: 0 0 20px var(--danger);
}

.button-full {
    width: 100%;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* ============================================
   TABELAS
   ============================================ */
.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    vertical-align: middle;
}

.table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.table td small {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.table-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.table-meta, .pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.empty-cell {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem !important;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slide-in-down 0.4s var(--ease-out-expo);
}

@keyframes slide-in-down {
    from { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.alert::before {
    font-size: 1.25rem;
}

.alert-success {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    color: var(--success);
}

.alert-success::before { content: '✓'; }

.alert-error {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    color: var(--danger);
}

.alert-error::before { content: '✕'; }

/* ============================================
   COMPONENTES EXTRAS
   ============================================ */
.divider {
    height: 1px;
    background: var(--glass-border);
    margin: 1.5rem 0;
}

.stack-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stack-list li {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stack-list strong {
    color: var(--text-primary);
    font-weight: 500;
}

.stack-list span, .stack-list small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-links a {
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quick-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--duration-fast);
}

.quick-links a:hover {
    background: var(--glass-bg);
    border-color: var(--aurora-primary);
    color: var(--text-primary);
    padding-left: 1.5rem;
}

.quick-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.muted {
    color: var(--text-muted);
}

/* ============================================
   AUTH / LOGIN - CINEMATOGRÁFICO
   ============================================ */
.auth-wrap {
    width: 100%;
    max-width: 480px;
    animation: fade-in-scale 0.8s var(--ease-out-expo);
}

@keyframes fade-in-scale {
    from { 
        opacity: 0; 
        transform: scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.auth-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 
        var(--shadow-lg),
        0 0 100px rgba(124, 58, 237, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hero);
}

.auth-brand {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-brand .brand-mark {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.auth-brand h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--aurora-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .content {
        margin-left: 0;
    }
    
    .app-shell {
        flex-direction: column;
    }
    
    .nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .nav a::after {
        display: none;
    }
    
    .sidebar-footer {
        display: none;
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .grid-two,
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .table-meta,
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   ANIMAÇÕES ADICIONAIS
   ============================================ */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 170, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 170, 0.5); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-footer::before {
    content: '🔒';
}

/* Setup Section */
.setup-section h2,
.login-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.setup-section > p,
.login-section > p {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--glass-highlight);
}

a:-webkit-any-link {
    
    text-decoration: none;
}