.centralizado{
align-content: center;
text-align: center;
    
}
.foto-miniatura {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.overlay-foto {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.overlay-foto img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    margin-bottom: 20px;
}

.btn-fechar,
.btn-excluir {
    background: #ff4444;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px auto 0;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.btn-fechar {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #666;
}

#btn_capturar {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    padding: 0;
    margin: 10px auto;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
}

#btn_capturar:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}
.toast-mensagem {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #323232;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}
.toast-mensagem.mostrar {
    opacity: 1;
    transform: translateY(-10px);
}
.toast-mensagem.sucesso { background-color: #4CAF50; }
.toast-mensagem.erro { background-color: #f44336; }
.toast-mensagem.info { background-color: #2196F3; }

