/* =========================================
   SISTEMA DE FEEDBACK (Loading + Toast)
   ========================================= */

/* --- Loading Overlay --- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 20000; /* Acima de tudo */
    display: none; /* JS controla isso */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

/* --- Toast (Balaãozinho) --- */
.toast-glass {
    position: fixed;
    bottom: -100px; /* Começa escondido */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20001; /* Acima até do loading */
    
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    padding: 10px 25px;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    pointer-events: none;
    white-space: nowrap;
}

.toast-glass.show {
    bottom: 30px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-content img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.toast-content span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
/* --- BRAND AREA (SÓ LOGO) --- */