
/* --- BLOQUEIO DE TELA PARA INSTALAÇÃO --- */
.install-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Fundo escuro */
    backdrop-filter: blur(12px); /* O EFEITO DE BORRÃO/OFUSCAR */
    z-index: 99999; /* Fica acima de TUDO */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Alinha no topo */
    padding-top: 80px; /* Distância do topo */
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

/* Classe para ativar o bloqueio */
.install-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* O Cartão de Diálogo */
.install-card {
    background: #1C1C1E;
    width: 85%;
    max-width: 400px;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--accent-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: translateY(-50px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.install-overlay.active .install-card {
    transform: translateY(0);
}

.install-logo-lg {
    width: 190px;
    height: 190px;
    margin-bottom: 15px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(253, 213, 0, 0.3));
}

.install-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.install-desc {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
}


.btn-force-install {
    /* Alinhamento do Ícone + Texto */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espaço entre o ícone e o texto */
    
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(253, 213, 0, 0.4);
    animation: pulseBig 2s infinite;
}


.btn-skip-install {
    margin-top: 15px;
    background: transparent;
    border: none;
    color: #555;
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
}

@keyframes pulseBig {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(253, 213, 0, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 30px rgba(253, 213, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(253, 213, 0, 0.4); }
}


.btn-skip-install {
    margin-top: 15px;
    background: transparent;
    border: none;
    color: #666; /* Cor discreta */
    font-size: 0.85rem;
    text-decoration: underline; /* Sublinhado para parecer link */
    cursor: pointer;
    padding: 10px;
}
