/* Miniaturas específicas da galeria de RegistroProducao */
.registro-miniatura {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 5px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.registro-miniatura:hover {
    transform: scale(1.1);
}

/* Overlay fullscreen exclusivo */
.registro-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}
.registro-overlay img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.registro-overlay .registro-btn-fechar,
.registro-overlay .registro-btn-excluir {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}
.registro-overlay .registro-btn-fechar {
    background-color: #666;
    position: absolute;
    top: 20px;
    right: 20px;
}
#div_botao_captura {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px; /* opcional para espaçamento */
    text-align: center;
}

#btn_captura_b {
    width: 80%;
    height: 150px;
    border: none;
    background-color: #6a0dad; /* Roxo escuro */
    color: white;
    border-radius: 20px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

#btn_captura_b {
    width: 80%;
    height: 150px;
    border: none;
    background-color: #fa807293; /* Roxo escuro */
    color: white;
    border-radius: 20px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

#btn_captura_b:hover {
    background-color: #fb5f5f9e; /* Roxo mais claro */
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

#btn_captura_b i {
    font-size: 40px; /* Ícone maior */
}
